<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:import href="imp1.xsl"/>
 <xsl:output method="html" indent="yes"/>

 <xsl:template match="/">
  <HTML>
   <BODY>
    <B>Samohlásky : </B>
   <xsl:apply-imports/>
   </BODY>
  </HTML>
 </xsl:template>

</xsl:stylesheet>
imp1.xsl

<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 <xsl:template match="abeceda/*">
  <xsl:if test=".='A'or .='E'or .='I'or .='Y'or .='O'or .='U'">
   <xsl:value-of select="."/>
  </xsl:if>
 </xsl:template>

</xsl:stylesheet>